github.com/klauspost/compress/zstd.bitWriter.nBits (field)
14 uses
github.com/klauspost/compress/zstd (current package)
bitwriter.go#L12: nBits uint8
bitwriter.go#L35: b.bitContainer |= uint64(value&bitMask16[bits&31]) << (b.nBits & 63)
bitwriter.go#L36: b.nBits += bits
bitwriter.go#L43: b.bitContainer |= uint64(value&bitMask32[bits&31]) << (b.nBits & 63)
bitwriter.go#L44: b.nBits += bits
bitwriter.go#L63: b.bitContainer |= uint64(value) << (b.nBits & 63)
bitwriter.go#L64: b.nBits += bits
bitwriter.go#L70: b.bitContainer |= uint64(value) << (b.nBits & 63)
bitwriter.go#L71: b.nBits += bits
bitwriter.go#L76: if b.nBits < 32 {
bitwriter.go#L84: b.nBits -= 32
bitwriter.go#L90: nbBytes := (b.nBits + 7) >> 3
bitwriter.go#L94: b.nBits = 0
bitwriter.go#L110: b.nBits = 0
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |